{% extends 'base.html' %} {% load static %} {% block title %}Поиск :: {{ block.super }}{% endblock %} {% block content %} {% for post in posts %} {% if post.photo %} {% else %} {% endif %} {{ post.title }} Posted By: {{ post.author }} {{ post.content|truncatewords_html:20|safe }} {{ post.created_at|date:"d.m.Y" }} {% empty %} По вашему запросу ничего не найдено... {% endfor %} {% if page_obj.has_other_pages %} {% for p in page_obj.paginator.page_range %} {% if page_obj.number == p %} {{ p }} {% elif p > page_obj.number|add:-3 and p < page_obj.number|add:3 %} {{ p }} {% endif %} {% endfor %} {% if page_obj.has_next %} {% endif %} {% endif %} {% endblock %}
По вашему запросу ничего не найдено...